home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MATHS / PLPLOT / PLPLOT.ZIP / scripts / plpr < prev    next >
Encoding:
Text File  |  1994-09-06  |  451 b   |  17 lines

  1. #!/bin/sh
  2. #
  3. #    File: plpr
  4. #    Usage: plpr file
  5. #
  6. #       Takes the named metafile and converts it to something your
  7. #       printer will understand.  This will be improved later to handle
  8. #    multiple printers and printer settings.  Only intended for use
  9. #    from the plplot/TK driver!  It deletes the named metafile after
  10. #    converting to the proper type so this is not suitable for
  11. #    general use.
  12. #
  13.  
  14. plrender -i $1 -dev psc -width 3 -o - | lpr
  15. rm $1
  16. exit 0
  17.